Will finally block get executed if the exception had not occurred?
2458
25-Oct-2010
Shankar M
23-Feb-2013Any code that must be absolutely executed whether an exception is thrown or not is
enclosed within the finally block.
For Ex: If a method opens a file, it must be closed whether an exception is raised or
not.
Uttam Misra
30-Oct-2010